From 9f7798eb6ea20ba94617772ed0f3b8862b826533 Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Thu, 29 Jan 2015 15:57:11 +0100 Subject: [PATCH] gnttab: fix a printk() format specifier ... to fix arm32 build. Signed-off-by: Jan Beulich --- xen/common/grant_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index e44fe205ef..1a11766a57 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -2210,7 +2210,7 @@ static int gnttab_copy_claim_buf(const struct gnttab_copy *op, buf->read_only, buf->domain); if ( rc != GNTST_okay ) PIN_FAIL(out, rc, - "source frame %lx invalid.\n", ptr->u.gmfn); + "source frame %"PRI_xen_pfn" invalid.\n", ptr->u.gmfn); buf->ptr.u.gmfn = ptr->u.gmfn; buf->ptr.offset = 0; -- 2.30.2